home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / adx7mu1a / profile.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-06-07  |  1.6 KB  |  52 lines

  1. VERSION 5.00
  2. Begin VB.Form profile 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Users Name"
  5.    ClientHeight    =   885
  6.    ClientLeft      =   45
  7.    ClientTop       =   285
  8.    ClientWidth     =   2940
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   885
  13.    ScaleWidth      =   2940
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   1  'CenterOwner
  16.    Begin VB.CommandButton Command1 
  17.       Caption         =   "Update Profile"
  18.       Height          =   315
  19.       Left            =   120
  20.       TabIndex        =   1
  21.       Top             =   435
  22.       Width           =   1230
  23.    End
  24.    Begin VB.TextBox Text1 
  25.       Height          =   300
  26.       Left            =   1530
  27.       MaxLength       =   6
  28.       TabIndex        =   0
  29.       Top             =   435
  30.       Width           =   870
  31.    End
  32.    Begin VB.Label Label1 
  33.       Alignment       =   2  'Center
  34.       Caption         =   "Enter Your name"
  35.       Height          =   225
  36.       Left            =   360
  37.       TabIndex        =   2
  38.       Top             =   75
  39.       Width           =   2205
  40.    End
  41. Attribute VB_Name = "profile"
  42. Attribute VB_GlobalNameSpace = False
  43. Attribute VB_Creatable = False
  44. Attribute VB_PredeclaredId = True
  45. Attribute VB_Exposed = False
  46. Private Sub Form_Deactivate()
  47. SaveSetting App.Title, "Settings", "profilename", profilename
  48. End Sub
  49. Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
  50. SaveSetting App.Title, "Settings", "profilename", profilename
  51. End Sub
  52.